home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Business Assistant
/
Business Assistant.iso
/
acctg
/
mygl121
/
glinst.bat
< prev
next >
Wrap
DOS Batch File
|
1987-03-14
|
617b
|
33 lines
echo off
echo *
echo ** Copies GL Version 1.15 files from Drive A to Drive C
echo ***
echo *** Creates a subdirectory on Drive C called \GL
echo **** Starts GL and creates the user file MYGL.INF
echo *** When GL begins, enter a password or just hit Enter
echo ***
echo ** PRESS CONTROL-C or BREAK if you wish to QUIT right now!
echo *
pause
echo Working...
a:
cd \
if exist gl.exe goto :a
goto :funny
:a
if exist userinfo.doc goto :b
goto :funny
:b
c:
cd \
md \gl
cd \gl
copy a:*.* /v
gl mygl.inf
goto :end
:funny
echo That's funny, the disk in Drive A is not GL's!
:end